/////////////////////////////////////////////////////////////////////////:
gameplay:

try to get to the exit without dying

/////////////////////////////////////////////////////////////////////////:
controls:

arrow keys to move
thats all

/////////////////////////////////////////////////////////////////////////:
editing gameplay:

you can edit the gamplay in the "settings.ini" file, just open it in notepad
or something simular and the variables are explained in the file 
(lines starting with '#'are comments)

/////////////////////////////////////////////////////////////////////////:
creating levels:

at start the "PrototyprLevel.lvl" will be loaded, to change the level just edit this file
don't use tabs but only spaces in this file

/////////////////////////////////////////////////////////////////////////:
level elements:

  (space) : void
g : floor/ground
m : floor that moves up and down (timing is needed)
v : floor that will collapse after its walked over once
~ : water, same effect as the void
w : walls
h : hidding spot
e : an exit (the final goal in the game)
b : bombs, boom, can be used to kill enemys if you go stand behind them
c : collectables (if you add these in the level, then you have to get them all before you can finish)
p : player spawn pos

1 directional enemys:
(these enemys will only move in 1 direction and turn 180 when they come accros an obstacle)
	2 : down to up enemy
	4 : left to right enemy
	6 : right to left enemy
	8 : up to down enemy

rotating enemys:
(these enemys will turn 90 CW or CCW when they come accros an obstacle)
CW:
	s : starting down enemy
	q : starting left enemy
	z : starting up enemy
	d : starting right enemy
CCW:
	k : starting down enemy
	j : starting left enemy
	l : starting right enemy
	i : starting up enemy

